home *** CD-ROM | disk | FTP | other *** search
/ Die Speccy' 97 / Die Speccy' 97.iso / amiga_system / the_aminet / comm / bbs / amms20d.lha / amms / mbbatch / com / download < prev    next >
Text File  |  1995-05-05  |  1KB  |  65 lines

  1. ;
  2. ;    NAME : DOWNLOAD
  3. ;
  4. ;    VERSION : $VER: 1.04 / 29.01.1995
  5. ;
  6. ;    FUNKTION : Zeigt Downloadliste an, fragt, ob Download mit
  7. ;           Autologout beendet werden soll und startet Download.
  8. ;
  9. ;    AUFRUF : DOWNLOAD
  10. ;
  11. ;    AUTOR : Michael Scheler
  12. ;
  13. ;    Diese Batchdatei benutzt folgende Befehle :
  14. ;    -------------------------------------------
  15. ;    BATCH DOWNLOAD
  16. ;    EOD
  17. ;    IFS
  18. ;    LOGOUT
  19. ;    MENU
  20. ;
  21. ;    Konstanten :
  22. ;
  23. TIMEOUT    = 5                ; Autologout-Timeout in Sekunden
  24. ;
  25. ;    Programm :
  26. ;
  27.  
  28. ; Download-Liste anzeigen
  29.  
  30. _batch download/list COUNT        ; Download-Liste anzeigen
  31. _ifs/e COUNT "0" END            ; Wenn kein File vorhanden, Ende
  32.  
  33. ; Texte einbinden
  34.  
  35. LANG={DEFLANGUAGE}
  36. _check file "mbbatch:com/'{ALANGUAGE}'/download.bat" GETTEXT
  37. LANG={ALANGUAGE}
  38. GETTEXT:
  39. _disk execute/keep "mbbatch:com/'LANG'/download.bat"
  40.  
  41. ; Abfrage nach Autologout am Ende des Downloads ...
  42.  
  43. _menu "'T1'" -                ; Downloadart abfragen
  44.  "'AUTO'"    AUTOLOGOUT -
  45.  "'DOWN'"    DOWNLOAD -
  46.  "'ABORT'"    END
  47.  
  48. ; Download mit anschliessenden Autologout starten ...
  49.  
  50. AUTOLOGOUT:
  51. _batch download                ; Download starten
  52. _menu/timeout=5/noecho "'T2'" -
  53.  "'ABORT'" END
  54. _logout/f                ; Autologout
  55.  
  56. ; Normalen Download starten
  57.  
  58. DOWNLOAD:
  59. _batch download                ; Download starten
  60.  
  61. ; Ende der Batch
  62.  
  63. END:
  64. _eod                    ; Batchbefehl beenden
  65.